
              
        html, body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
}

        * 

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

   .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

  
 /* Hero Section */
        .hero {
            min-height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
           
        }

        .hero-content {
           
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(107, 255, 198, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(38, 209, 252, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(107, 225, 255, 0.4);
        }

        /* connect Section */
        .connect {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .connect h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
         
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .feature-card p {
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-content p {
            opacity: 0.7;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            transform: translateY(-2px);
        }

      

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .connect-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll effects */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Add this to your CSS */
.feature-header {
    display: flex;
    align-items: center;
    gap: 16px; /* space between icon and title */
    
}

.feature-header .feature-icon {
        margin-bottom: 0; /* remove any bottom margin */
    display: flex;
    align-items: center; /* center icon vertically */
    justify-content: center;
    
}
/* Add spacing below the header for the button */
.feature-card .feature-header {
    margin-bottom: 20px;
}
/* Center the button in feature cards */
.feature-card .cta-button {
    display: block;
    margin: 0 auto;
    text-align: center;
}
        .feature-card {
            background: rgba(255,255,255,0.07);
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0,0,0,0.4);
            padding: 40px 32px;
            max-width: 420px;
            width: 100%;
            margin: 32px auto;
            text-align: center;
            backdrop-filter: blur(16px) saturate(1.2);
            border: 1.5px solid rgba(255,255,255,0.18);
            z-index: 1;
        }
       
        .offline-title {
            font-size: 2rem;
            margin-bottom: 16px;
            text-shadow: 0 0 16px #1b6ca8, 0 2px 10px rgba(0,0,0,0.3);
        }
        .stream-embed {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            border: none;
            margin-bottom: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.2);
        }
      
  

        @media (max-width: 768px) {
            .offline-title {
                font-size: 2rem;
            }
            
            .offline-subtitle {
                font-size: 1rem;
            }
            
            .social-links {
                flex-direction: column;
                align-items: center;
            }
            
            .social-link {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

          /* Footer */
        footer {
                flex-shrink: 0;

            background: rgba(0, 0, 0, 0.5);
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-content p {
            opacity: 0.7;
            margin-bottom: 30px;
        }
        .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
    justify-items: center;
}

.feature-item {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 16px 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    max-width: 380px;
}

.feature-header {
    gap: 10px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    margin-bottom: 0;
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.cta-button {
    padding: 8px 18px;
    font-size: 0.95rem;
    border-radius: 6px;
    margin-top: 10px;
}
    #loading {
    display: block;
}
#redirectMessage, #offlineContainer {
    display: none;
}